home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / et / et3_0-a1.lha / et3 / src / makefile < prev    next >
Makefile  |  1992-08-26  |  54KB  |  1,017 lines

  1. # Makefile for ET++
  2.  
  3. MAKE    = make
  4. CCFLAGS = 
  5. CC      = etCC
  6.  
  7. .SUFFIXES: .C
  8.  
  9. .C.o:
  10.     $(CC) $(CCFLAGS) -c $<
  11.  
  12. #-------------------------------------------------------------------------------
  13. # supported window systems
  14. #-------------------------------------------------------------------------------
  15. XSERVER         =   XSERVER/xserver.o   # X11.3
  16. SUNWINDOW       =   SUNWINDOW/sun.o     # sunwindow/sunview
  17.  
  18. #-------------------------------------------------------------------------------
  19. # supported operating systems
  20. #-------------------------------------------------------------------------------
  21. UNIX            =   UNIX/unix.o
  22.  
  23. #-------------------------------------------------------------------------------
  24. # programming environment
  25. #-------------------------------------------------------------------------------
  26.  
  27. ET_PROGENV      =   PROGENV/etprogenv.o
  28.  
  29. #-------------------------------------------------------------------------------
  30. # configuration
  31. #-------------------------------------------------------------------------------
  32.  
  33. #---- window system
  34.  
  35. WS_OFILES       =   $(SUNWINDOW) $(XSERVER)
  36. WS_DIRS         =   SUNWINDOW XSERVER
  37.  
  38. WS_OFILES       =   $(SUNWINDOW)
  39. WS_DIRS         =   SUNWINDOW
  40.  
  41. WS_OFILES       =   $(XSERVER)
  42. WS_DIRS         =   XSERVER
  43.  
  44. #---- printer
  45.  
  46. PR_OFILES       =   PRINTERS/printers.o
  47. PR_DIRS         =   PRINTERS
  48.  
  49. #---- look
  50.  
  51. LOOK_OFILES     =   LOOKS/looks.o
  52. LOOK_DIRS       =   LOOKS
  53.  
  54. #---- operating system
  55.  
  56. OS_OFILES       =   $(UNIX)
  57. OS_DIRS         =   UNIX
  58.  
  59. #---- programming environment
  60.  
  61. PE_OFILES       =   $(ET_PROGENV)
  62. PE_DIRS         =   PROGENV
  63.  
  64. #-------------------------------------------------------------------------------
  65. # end of configuration
  66. #-------------------------------------------------------------------------------
  67.  
  68. DIRS            =   CONTAINER $(WS_DIRS) $(LOOK_DIRS) $(PR_DIRS) \
  69.             $(PE_DIRS) $(OS_DIRS) CONVERTERS STREAMFILTERS
  70.  
  71. #-------------------------------------------------------------------------------
  72.  
  73. all:        et col
  74.  
  75. #-------------------------------------------------------------------------------
  76. # col
  77. # basic data structures (non graphical classes)
  78. #-------------------------------------------------------------------------------
  79.  
  80. COLOFILES=       \
  81.         Symbol.o \
  82.         AccessMem.o \
  83.         Error.o \
  84.         ProgEnv.o \
  85.         CType.o \
  86.         String.o \
  87.         Types.o \
  88.         Math.o \
  89.         CLib.o \
  90.         regex.o \
  91.         Env.o \
  92.         $(OS_OFILES) \
  93.         BitSet.o \
  94.         ObjFloat.o \
  95.         Object.o \
  96.         CONTAINER/container.o \
  97.         Progress.o \
  98.         Exception.o \
  99.         ObjInt.o \
  100.         PathLookup.o \
  101.         ByteArray.o \
  102.         RegularExp.o \
  103.         PttyConnection.o \
  104.         StreamConnection.o \
  105.         Directory.o \
  106.         Time.o \
  107.         Date.o \
  108.         System.o \
  109.         Metric.o \
  110.         Rectangle.o \
  111.         Region.o \
  112.         Point.o \
  113.         ObjectTable.o \
  114.         Class.o \
  115.         ClassManager.o \
  116.         Storage.o \
  117.         Stream.o \
  118.         StreamBuf.o \
  119.         STREAMFILTERS/streamfilters.o \
  120.         FileBuf.o \
  121.         MemBuf.o
  122.  
  123. COLDIRS =   UNIX STREAMFILTERS CONTAINER
  124.  
  125. col:        coldirs col.o
  126.  
  127. col.o:      $(COLOFILES) FRC
  128.         $(CC) -r -o $@ $(COLOFILES)
  129.  
  130. #--- for temporary use ?? 
  131. colofiles:
  132.         @echo $(COLOFILES)
  133. #---
  134.        
  135. CType.o:    CType.C
  136.         $(CC) -R -c CType.C
  137.  
  138. coldirs:
  139.         -@for i in $(COLDIRS); do (echo $$i; cd $$i; $(MAKE)); done
  140.  
  141. #-------------------------------------------------------------------------------
  142. # graphical classes
  143. #-------------------------------------------------------------------------------
  144.  
  145. ETOFILES=    \
  146.         Form.o \
  147.         ClipBoard.o \
  148.         GraphView.o \
  149.         MenuBar.o \
  150.         ShellTView.o \
  151.         ShellTool.o \
  152.         VObjectTView.o \
  153.         VObjectText.o \
  154.         CodeTextView.o \
  155.         GotoDialog.o \
  156.         Splitter.o \
  157.         TreeView.o \
  158.         DebuggerIF.o \
  159.         View.o \
  160.         PrintManager.o \
  161.         Printer.o \
  162.         Application.o \
  163.         TextView.o \
  164.         ChangeDialog.o \
  165.         FindChange.o \
  166.         FindDialog.o \
  167.         TextCmd.o \
  168.         FileDialog.o \
  169.         DirectoryDialog.o \
  170.         ColorPicker.o \
  171.         EditDialog.o \
  172.         Manager.o \
  173.         Document.o \
  174.         ProgressDialog.o \
  175.         Panner.o \
  176.         Zoomer.o \
  177.         Data.o \
  178.         Converter.o \
  179.         TypeMatcher.o \
  180.         Scroller.o \
  181.         Look.o \
  182.         Layout.o \
  183.         ScrollBar.o \
  184.         Expander.o \
  185.         CmdNo.o \
  186.         SizeableExp.o \
  187.         Slider.o \
  188.         Menu.o \
  189.         Separator.o \
  190.         CollView.o \
  191.         Alert.o \
  192.         StyledText.o \
  193.         GapText.o \
  194.         Fields.o \
  195.         LineItem.o \
  196.         BackgroundItem.o \
  197.         OneOfCluster.o \
  198.         ManyOfCluster.o \
  199.         Buttons.o \
  200.         PopupItem.o \
  201.         CheapText.o \
  202.         Dialog.o \
  203.         DialogView.o \
  204.         StaticTView.o \
  205.         CONVERTERS/converters.o \
  206.         Text.o \
  207.         Mark.o \
  208.         Window.o \
  209.         BorderItems.o \
  210.         Box.o \
  211.         Cluster.o \
  212.         Clipper.o \
  213.         Filler.o \
  214.         TextItem.o \
  215.         ImageItem.o \
  216.         PictureItem.o \
  217.         VObject.o \
  218.         VObjectPair.o \
  219.         CompVObject.o \
  220.         EvtHandler.o \
  221.         TextFormatter.o \
  222.         TextPainter.o \
  223.         TextReader.o \
  224.         TextStyles.o \
  225.         Command.o \
  226.         CommandProcessor.o \
  227.         Ink.o \
  228.         Font.o \
  229.         Bitmap.o \
  230.         DevBitmap.o \
  231.         PictPort.o \
  232.         Picture.o \
  233.         PrintPort.o \
  234.         Token.o \
  235.         WindowPort.o \
  236.         WindowColorMap.o \
  237.         WindowSystem.o \
  238.         Port.o
  239.  
  240. etofiles.o:  $(ETOFILES)
  241.         $(CC) -r -o $@ $(ETOFILES)
  242.         
  243. #--- for temporary use ?? 
  244. etofiles:
  245.         @echo $(ETOFILES)
  246. #---
  247.  
  248. MFLAGS  = \
  249.     CCFLAGS="$(CCFLAGS)" \
  250.     CC="$(CC)" \
  251.     MAKE="$(MAKE)"
  252.  
  253. #VObjectTView.o:
  254. #       $(CC) $(CCFLAGS) -g -c $<
  255.  
  256. #-------------------------------------------------------------------------------
  257. # et
  258. #-------------------------------------------------------------------------------
  259.  
  260. ETO     =   $(PE_OFILES) etofiles.o $(WS_OFILES) $(LOOK_OFILES) $(PR_OFILES) col.o  
  261. # workaround for ld bug in SunOS 4.1
  262. ETO     =   $(PE_OFILES) $(ETOFILES) $(WS_OFILES) $(LOOK_OFILES) $(PR_OFILES) $(COLOFILES)  
  263. # no PROGENV (dynamicaly loaded)
  264. #ETO     =   $(ETOFILES) $(WS_OFILES) $(LOOK_OFILES) $(PR_OFILES) $(COLOFILES)
  265.  
  266. ETDIRS  =   $(DIRS)
  267.  
  268. et:     etdirs et.o
  269.  
  270. etdirs: 
  271.     -@for i in $(ETDIRS); do (echo $$i; cd $$i; $(MAKE) $(MFLAGS)); done
  272.  
  273. et.o:   $(ETO) FRC
  274.     $(CC) -r -o $@ $(ETO)
  275.  
  276. et_dump:     # only supported by g++
  277.     @echo "!!! no rmake !!!"
  278.     g++ -S -g -I$(ET_DIR)/src/CONTAINER -I$(ET_DIR)/src ET_Dump.C
  279.     
  280. config:
  281.     touch ObjectTable.C
  282.     $(MAKE)
  283.  
  284. #-------------------------------------------------------------------------------
  285.  
  286. depend:
  287.     etmakedep -ICONTAINER *.[cC]
  288.     -@for i in $(DIRS); do (cd $$i; $(MAKE) $@); done
  289.  
  290. clean:
  291.     rm -f core *..c errs .rsrc ET_Dump.s ET_Dump $(ETO)
  292.     -@for i in $(DIRS); do (cd $$i; $(MAKE) $@); done
  293.  
  294. clobber:    clean
  295.     rm -f *.o .MAP/*.map .MAP/*.o
  296.     -@for i in $(DIRS); do (cd $$i; $(MAKE) $@); done
  297.  
  298. touch:
  299.     -@for i in $(DIRS); do (cd $$i; $(MAKE) $@); done
  300.     $(MAKE) -t
  301.     rm -f et.o col.o etdirs coldirs
  302.     $(MAKE)
  303.     
  304. libet.a:   $(ETO) FRC
  305.     ar rv $@ $(ETO)
  306.     ranlib $@
  307.  
  308. FRC:
  309.  
  310. # DO NOT DELETE THIS LINE -- make depend depends on it.
  311.  
  312. AccessMem.o: AccessMem.h Types.h Class.h Object.h Storage.h Stream.h
  313. AccessMem.o: Exception.h
  314. Alert.o: Alert.h Dialog.h Manager.h EvtHandler.h Object.h Types.h Storage.h
  315. Alert.o: Stream.h Token.h Rectangle.h Metric.h Point.h WindowSystem.h Port.h
  316. Alert.o: System.h Font.h Ink.h Bitmap.h Symbol.h Window.h Clipper.h VObject.h
  317. Alert.o: Command.h CmdNo.h Alert_e.h Class.h Env.h ImageItem.h Buttons.h
  318. Alert.o: CompVObject.h CheapText.h Text.h String.h CType.h TextStyles.h
  319. Alert.o: CONTAINER/OrdColl.h CONTAINER/SeqColl.h CONTAINER/Collection.h
  320. Alert.o: CONTAINER/Container.h CONTAINER/Iterator.h TextFormatter.h Mark.h
  321. Alert.o: StaticTView.h CONTAINER/ObjArray.h View.h StyledText.h GapText.h
  322. Alert.o: Expander.h Box.h BorderItems.h TextItem.h images/note.image
  323. Alert.o: images/caution.image images/stop.image images/sun.image
  324. Alert.o: images/error.image
  325. Application.o: Application.h Manager.h EvtHandler.h Object.h Types.h
  326. Application.o: Storage.h Stream.h Token.h Rectangle.h Metric.h Point.h
  327. Application.o: WindowSystem.h Port.h System.h Font.h Ink.h Bitmap.h Symbol.h
  328. Application.o: Window.h Clipper.h VObject.h Command.h CmdNo.h Data.h
  329. Application.o: TypeMatcher.h Document.h Class.h FileDialog.h Dialog.h
  330. Application.o: ObjectTable.h CONTAINER/Iterator.h ClassManager.h
  331. Application.o: CONTAINER/OrdColl.h CONTAINER/SeqColl.h CONTAINER/Collection.h
  332. Application.o: CONTAINER/Container.h ClipBoard.h ProgEnv.h Buttons.h
  333. Application.o: CompVObject.h StreamConnection.h Env.h ProgressDialog.h
  334. Application.o: Progress.h StreamBuf.h Alert_e.h Error.h Menu.h PopupItem.h
  335. Application.o: Separator.h String.h CType.h Expander.h Box.h MenuBar.h
  336. Application.o: DebuggerIF.h
  337. BackgroundItem.o: BackgroundItem.h CompVObject.h VObject.h Types.h Port.h
  338. BackgroundItem.o: System.h Object.h Storage.h Stream.h Point.h Metric.h
  339. BackgroundItem.o: Rectangle.h Font.h Ink.h Bitmap.h Token.h EvtHandler.h
  340. BackgroundItem.o: Command.h CmdNo.h Class.h
  341. BitSet.o: BitSet.h Object.h Types.h Storage.h Stream.h Class.h
  342. Bitmap.o: Bitmap.h Types.h Point.h Stream.h Ink.h Object.h Storage.h Class.h
  343. Bitmap.o: DevBitmap.h Error.h WindowSystem.h Port.h System.h Metric.h
  344. Bitmap.o: Rectangle.h Font.h Token.h Symbol.h String.h CType.h
  345. Bitmap.o: CONTAINER/OrdColl.h CONTAINER/SeqColl.h CONTAINER/Collection.h
  346. Bitmap.o: CONTAINER/Container.h CONTAINER/Iterator.h
  347. Bitmap.o: STREAMFILTERS/HexFilter.h StreamBuf.h STREAMFILTERS/LZWFilter.h
  348. Bitmap.o: STREAMFILTERS/RLEFilter.h STREAMFILTERS/A85Filter.h
  349. BorderItems.o: BorderItems.h TextItem.h VObject.h Types.h Port.h System.h
  350. BorderItems.o: Object.h Storage.h Stream.h Point.h Metric.h Rectangle.h
  351. BorderItems.o: Font.h Ink.h Bitmap.h Token.h EvtHandler.h Command.h CmdNo.h
  352. BorderItems.o: CompVObject.h Class.h String.h CType.h Look.h Layout.h Math.h
  353. Box.o: Box.h CompVObject.h VObject.h Types.h Port.h System.h Object.h
  354. Box.o: Storage.h Stream.h Point.h Metric.h Rectangle.h Font.h Ink.h Bitmap.h
  355. Box.o: Token.h EvtHandler.h Command.h CmdNo.h Class.h CONTAINER/Collection.h
  356. Box.o: CONTAINER/Container.h CONTAINER/Iterator.h Math.h
  357. Buttons.o: Buttons.h CompVObject.h VObject.h Types.h Port.h System.h Object.h
  358. Buttons.o: Storage.h Stream.h Point.h Metric.h Rectangle.h Font.h Ink.h
  359. Buttons.o: Bitmap.h Token.h EvtHandler.h Command.h CmdNo.h Class.h TextItem.h
  360. Buttons.o: WindowSystem.h Symbol.h Look.h Layout.h
  361. ByteArray.o: ByteArray.h Object.h Types.h Storage.h Stream.h Class.h String.h
  362. ByteArray.o: CType.h
  363. CLib.o: CLib.h Types.h
  364. CType.o: CType.h
  365. ChangeDialog.o: ChangeDialog.h FindDialog.h Dialog.h Manager.h EvtHandler.h
  366. ChangeDialog.o: Object.h Types.h Storage.h Stream.h Token.h Rectangle.h
  367. ChangeDialog.o: Metric.h Point.h WindowSystem.h Port.h System.h Font.h Ink.h
  368. ChangeDialog.o: Bitmap.h Symbol.h Window.h Clipper.h VObject.h Command.h
  369. ChangeDialog.o: CmdNo.h FindChange_e.h ET++.h Class.h CompVObject.h
  370. ChangeDialog.o: TextItem.h Application.h Data.h TypeMatcher.h Document.h
  371. ChangeDialog.o: View.h Scroller.h Cluster.h Box.h Splitter.h Expander.h
  372. ChangeDialog.o: Menu.h PopupItem.h Buttons.h Separator.h MenuBar.h String.h
  373. ChangeDialog.o: CType.h Error.h Alert_e.h RegularExp.h TextView.h
  374. ChangeDialog.o: StaticTView.h Text.h TextStyles.h CONTAINER/OrdColl.h
  375. ChangeDialog.o: CONTAINER/SeqColl.h CONTAINER/Collection.h
  376. ChangeDialog.o: CONTAINER/Container.h CONTAINER/Iterator.h TextFormatter.h
  377. ChangeDialog.o: Mark.h CONTAINER/ObjArray.h TextCmd.h BorderItems.h
  378. ChangeDialog.o: OneOfCluster.h ManyOfCluster.h Fields.h Form.h Progress.h
  379. ChangeDialog.o: CheapText.h
  380. CheapText.o: CheapText.h Text.h Object.h Types.h Storage.h Stream.h String.h
  381. CheapText.o: CType.h Font.h Rectangle.h Metric.h Point.h Port.h System.h
  382. CheapText.o: Ink.h Bitmap.h Token.h TextStyles.h CONTAINER/OrdColl.h
  383. CheapText.o: CONTAINER/SeqColl.h CONTAINER/Collection.h CONTAINER/Container.h
  384. CheapText.o: CONTAINER/Iterator.h TextFormatter.h Mark.h Class.h RegularExp.h
  385. CheapText.o: Error.h Math.h
  386. Class.o: Class.h Object.h Types.h Storage.h Stream.h Error.h String.h CType.h
  387. Class.o: CONTAINER/ObjArray.h CONTAINER/SeqColl.h CONTAINER/Collection.h
  388. Class.o: CONTAINER/Container.h CONTAINER/Iterator.h CONTAINER/OrdColl.h
  389. Class.o: ObjectTable.h ClassManager.h AccessMem.h
  390. ClassManager.o: ClassManager.h Object.h Types.h Storage.h Stream.h
  391. ClassManager.o: CONTAINER/OrdColl.h CONTAINER/SeqColl.h
  392. ClassManager.o: CONTAINER/Collection.h CONTAINER/Container.h
  393. ClassManager.o: CONTAINER/Iterator.h Class.h String.h CType.h
  394. ClassManager.o: CONTAINER/SortedOList.h CONTAINER/ObjList.h ObjectTable.h
  395. ClassManager.o: System.h
  396. ClipBoard.o: ClipBoard.h Object.h Types.h Storage.h Stream.h Symbol.h Class.h
  397. ClipBoard.o: View.h VObject.h Port.h System.h Point.h Metric.h Rectangle.h
  398. ClipBoard.o: Font.h Ink.h Bitmap.h Token.h EvtHandler.h Command.h CmdNo.h
  399. ClipBoard.o: MemBuf.h StreamBuf.h WindowSystem.h Data.h TypeMatcher.h
  400. ClipBoard.o: String.h CType.h
  401. Clipper.o: Clipper.h VObject.h Types.h Port.h System.h Object.h Storage.h
  402. Clipper.o: Stream.h Point.h Metric.h Rectangle.h Font.h Ink.h Bitmap.h
  403. Clipper.o: Token.h EvtHandler.h Command.h CmdNo.h Class.h Math.h View.h
  404. Clipper.o: Symbol.h Error.h Window.h WindowSystem.h String.h CType.h
  405. Clipper.o: WindowPort.h CONTAINER/Collection.h CONTAINER/Container.h
  406. Clipper.o: CONTAINER/Iterator.h
  407. Cluster.o: Cluster.h Box.h CompVObject.h VObject.h Types.h Port.h System.h
  408. Cluster.o: Object.h Storage.h Stream.h Point.h Metric.h Rectangle.h Font.h
  409. Cluster.o: Ink.h Bitmap.h Token.h EvtHandler.h Command.h CmdNo.h Class.h
  410. CmdNo.o: CmdNo.h
  411. CodeTextView.o: CodeTextView.h TextView.h StaticTView.h Text.h Object.h
  412. CodeTextView.o: Types.h Storage.h Stream.h String.h CType.h Font.h
  413. CodeTextView.o: Rectangle.h Metric.h Point.h Port.h System.h Ink.h Bitmap.h
  414. CodeTextView.o: Token.h TextStyles.h CONTAINER/OrdColl.h CONTAINER/SeqColl.h
  415. CodeTextView.o: CONTAINER/Collection.h CONTAINER/Container.h
  416. CodeTextView.o: CONTAINER/Iterator.h TextFormatter.h Mark.h
  417. CodeTextView.o: CONTAINER/ObjArray.h View.h VObject.h EvtHandler.h Command.h
  418. CodeTextView.o: CmdNo.h Symbol.h Class.h StyledText.h GapText.h
  419. CodeTextView.o: CONTAINER/RunArray.h Env.h Math.h
  420. CollView.o: CollView.h View.h VObject.h Types.h Port.h System.h Object.h
  421. CollView.o: Storage.h Stream.h Point.h Metric.h Rectangle.h Font.h Ink.h
  422. CollView.o: Bitmap.h Token.h EvtHandler.h Command.h CmdNo.h Symbol.h Class.h
  423. CollView.o: String.h CType.h CONTAINER/SeqColl.h CONTAINER/Collection.h
  424. CollView.o: CONTAINER/Container.h CONTAINER/Iterator.h Error.h Math.h
  425. CollView.o: WindowSystem.h
  426. ColorPicker.o: ColorPicker.h Dialog.h Manager.h EvtHandler.h Object.h Types.h
  427. ColorPicker.o: Storage.h Stream.h Token.h Rectangle.h Metric.h Point.h
  428. ColorPicker.o: WindowSystem.h Port.h System.h Font.h Ink.h Bitmap.h Symbol.h
  429. ColorPicker.o: Window.h Clipper.h VObject.h Command.h CmdNo.h ColorPicker_e.h
  430. ColorPicker.o: ET++.h Class.h CompVObject.h TextItem.h Application.h Data.h
  431. ColorPicker.o: TypeMatcher.h Document.h View.h Scroller.h Cluster.h Box.h
  432. ColorPicker.o: Splitter.h Expander.h Menu.h PopupItem.h Buttons.h Separator.h
  433. ColorPicker.o: MenuBar.h String.h CType.h Error.h Alert_e.h ScrollBar.h
  434. ColorPicker.o: Slider.h WindowPort.h Filler.h Look.h Layout.h BorderItems.h
  435. ColorPicker.o: Fields.h Math.h CONTAINER/OrdColl.h CONTAINER/SeqColl.h
  436. ColorPicker.o: CONTAINER/Collection.h CONTAINER/Container.h
  437. ColorPicker.o: CONTAINER/Iterator.h CollView.h
  438. Command.o: Command.h Object.h Types.h Storage.h Stream.h Point.h Class.h
  439. Command.o: Error.h String.h CType.h Port.h System.h Metric.h Rectangle.h
  440. Command.o: Font.h Ink.h Bitmap.h Token.h ObjectTable.h CONTAINER/Iterator.h
  441. CommandProcessor.o: CommandProcessor.h Command.h Object.h Types.h Storage.h
  442. CommandProcessor.o: Stream.h Point.h Class.h CONTAINER/ObjArray.h
  443. CommandProcessor.o: CONTAINER/SeqColl.h CONTAINER/Collection.h
  444. CommandProcessor.o: CONTAINER/Container.h CONTAINER/Iterator.h Menu.h
  445. CommandProcessor.o: Manager.h EvtHandler.h Token.h Rectangle.h Metric.h
  446. CommandProcessor.o: WindowSystem.h Port.h System.h Font.h Ink.h Bitmap.h
  447. CommandProcessor.o: Symbol.h Window.h Clipper.h VObject.h CmdNo.h
  448. CommandProcessor.o: CompVObject.h PopupItem.h Buttons.h Separator.h
  449. CompVObject.o: CompVObject.h VObject.h Types.h Port.h System.h Object.h
  450. CompVObject.o: Storage.h Stream.h Point.h Metric.h Rectangle.h Font.h Ink.h
  451. CompVObject.o: Bitmap.h Token.h EvtHandler.h Command.h CmdNo.h Class.h
  452. CompVObject.o: CONTAINER/OrdColl.h CONTAINER/SeqColl.h CONTAINER/Collection.h
  453. CompVObject.o: CONTAINER/Container.h CONTAINER/Iterator.h
  454. Converter.o: Converter.h Object.h Types.h Storage.h Stream.h Symbol.h Class.h
  455. Converter.o: String.h CType.h Data.h TypeMatcher.h CLib.h CONTAINER/OrdColl.h
  456. Converter.o: CONTAINER/SeqColl.h CONTAINER/Collection.h CONTAINER/Container.h
  457. Converter.o: CONTAINER/Iterator.h ClassManager.h CollView.h View.h VObject.h
  458. Converter.o: Port.h System.h Point.h Metric.h Rectangle.h Font.h Ink.h
  459. Converter.o: Bitmap.h Token.h EvtHandler.h Command.h CmdNo.h TextItem.h
  460. Converter.o: BorderItems.h CompVObject.h Box.h Scroller.h Cluster.h
  461. Converter.o: Expander.h Dialog.h Manager.h WindowSystem.h Window.h Clipper.h
  462. Converter.o: Buttons.h
  463. Data.o: Data.h Object.h Types.h Storage.h Stream.h Symbol.h TypeMatcher.h
  464. Data.o: Class.h CONTAINER/OrdColl.h CONTAINER/SeqColl.h
  465. Data.o: CONTAINER/Collection.h CONTAINER/Container.h CONTAINER/Iterator.h
  466. Data.o: FileBuf.h StreamBuf.h MemBuf.h String.h CType.h System.h
  467. Data.o: ProgressDialog.h Progress.h Port.h Point.h Metric.h Rectangle.h
  468. Data.o: Font.h Ink.h Bitmap.h Token.h Directory.h Converter.h
  469. Data.o: images/directory.image images/exec.image images/ascii.image
  470. Data.o: images/et++.image images/file.image
  471. Date.o: Date.h Types.h Stream.h Math.h Class.h Object.h Storage.h String.h
  472. Date.o: CType.h
  473. DebuggerIF.o: DebuggerIF.h Manager.h EvtHandler.h Object.h Types.h Storage.h
  474. DebuggerIF.o: Stream.h Token.h Rectangle.h Metric.h Point.h WindowSystem.h
  475. DebuggerIF.o: Port.h System.h Font.h Ink.h Bitmap.h Symbol.h Window.h
  476. DebuggerIF.o: Clipper.h VObject.h Command.h CmdNo.h Class.h Application.h
  477. DebuggerIF.o: Data.h TypeMatcher.h StreamConnection.h String.h CType.h
  478. DevBitmap.o: DevBitmap.h Types.h Point.h Stream.h Ink.h Object.h Storage.h
  479. DevBitmap.o: WindowPort.h Port.h System.h Metric.h Rectangle.h Font.h
  480. DevBitmap.o: Bitmap.h Token.h WindowSystem.h Symbol.h WindowColorMap.h
  481. DevBitmap.o: Error.h
  482. Dialog.o: Dialog.h Manager.h EvtHandler.h Object.h Types.h Storage.h Stream.h
  483. Dialog.o: Token.h Rectangle.h Metric.h Point.h WindowSystem.h Port.h System.h
  484. Dialog.o: Font.h Ink.h Bitmap.h Symbol.h Window.h Clipper.h VObject.h
  485. Dialog.o: Command.h CmdNo.h Class.h Error.h Buttons.h CompVObject.h
  486. DialogView.o: DialogView.h View.h VObject.h Types.h Port.h System.h Object.h
  487. DialogView.o: Storage.h Stream.h Point.h Metric.h Rectangle.h Font.h Ink.h
  488. DialogView.o: Bitmap.h Token.h EvtHandler.h Command.h CmdNo.h Symbol.h
  489. DialogView.o: Class.h CONTAINER/OrdColl.h CONTAINER/SeqColl.h
  490. DialogView.o: CONTAINER/Collection.h CONTAINER/Container.h
  491. DialogView.o: CONTAINER/Iterator.h
  492. Directory.o: Directory.h System.h Object.h Types.h Storage.h Stream.h
  493. DirectoryDialog.o: DirectoryDialog.h FileDialog.h Dialog.h Manager.h
  494. DirectoryDialog.o: EvtHandler.h Object.h Types.h Storage.h Stream.h Token.h
  495. DirectoryDialog.o: Rectangle.h Metric.h Point.h WindowSystem.h Port.h
  496. DirectoryDialog.o: System.h Font.h Ink.h Bitmap.h Symbol.h Window.h Clipper.h
  497. DirectoryDialog.o: VObject.h Command.h CmdNo.h Class.h PopupItem.h Buttons.h
  498. DirectoryDialog.o: CompVObject.h ImageItem.h BorderItems.h TextItem.h
  499. DirectoryDialog.o: Expander.h Box.h CheapText.h Text.h String.h CType.h
  500. DirectoryDialog.o: TextStyles.h CONTAINER/OrdColl.h CONTAINER/SeqColl.h
  501. DirectoryDialog.o: CONTAINER/Collection.h CONTAINER/Container.h
  502. DirectoryDialog.o: CONTAINER/Iterator.h TextFormatter.h Mark.h CollView.h
  503. DirectoryDialog.o: View.h Directory.h Data.h TypeMatcher.h Fields.h Form.h
  504. DirectoryDialog.o: Menu.h Separator.h Scroller.h Cluster.h
  505. Document.o: Document.h Manager.h EvtHandler.h Object.h Types.h Storage.h
  506. Document.o: Stream.h Token.h Rectangle.h Metric.h Point.h WindowSystem.h
  507. Document.o: Port.h System.h Font.h Ink.h Bitmap.h Symbol.h Window.h Clipper.h
  508. Document.o: VObject.h Command.h CmdNo.h Data.h TypeMatcher.h Class.h
  509. Document.o: ImageItem.h FileDialog.h Dialog.h CommandProcessor.h Env.h
  510. Document.o: ProgressDialog.h Progress.h StreamBuf.h CONTAINER/OrdColl.h
  511. Document.o: CONTAINER/SeqColl.h CONTAINER/Collection.h CONTAINER/Container.h
  512. Document.o: CONTAINER/Iterator.h CLib.h MenuBar.h Box.h CompVObject.h Menu.h
  513. Document.o: PopupItem.h Buttons.h Separator.h String.h CType.h Application.h
  514. Document.o: Alert_e.h
  515. ET_Dump.o: ET_Dump.h ET++.h Class.h Object.h Types.h Storage.h Stream.h
  516. ET_Dump.o: CompVObject.h VObject.h Port.h System.h Point.h Metric.h
  517. ET_Dump.o: Rectangle.h Font.h Ink.h Bitmap.h Token.h EvtHandler.h Command.h
  518. ET_Dump.o: CmdNo.h TextItem.h Application.h Manager.h WindowSystem.h Symbol.h
  519. ET_Dump.o: Window.h Clipper.h Data.h TypeMatcher.h Document.h View.h
  520. ET_Dump.o: Scroller.h Cluster.h Box.h Splitter.h Expander.h Menu.h
  521. ET_Dump.o: PopupItem.h Buttons.h Separator.h MenuBar.h String.h CType.h
  522. ET_Dump.o: Error.h Alert_e.h CONTAINER/OrdColl.h CONTAINER/SeqColl.h
  523. ET_Dump.o: CONTAINER/Collection.h CONTAINER/Container.h CONTAINER/Iterator.h
  524. ET_Dump.o: StyledText.h GapText.h Text.h TextStyles.h TextFormatter.h Mark.h
  525. ET_Dump.o: CollView.h Dialog.h BorderItems.h
  526. EditDialog.o: EditDialog.h Manager.h EvtHandler.h Object.h Types.h Storage.h
  527. EditDialog.o: Stream.h Token.h Rectangle.h Metric.h Point.h WindowSystem.h
  528. EditDialog.o: Port.h System.h Font.h Ink.h Bitmap.h Symbol.h Window.h
  529. EditDialog.o: Clipper.h VObject.h Command.h CmdNo.h Class.h Dialog.h
  530. EditDialog.o: Scroller.h Cluster.h Box.h CompVObject.h VObjectText.h
  531. EditDialog.o: StyledText.h GapText.h Text.h String.h CType.h TextStyles.h
  532. EditDialog.o: CONTAINER/OrdColl.h CONTAINER/SeqColl.h CONTAINER/Collection.h
  533. EditDialog.o: CONTAINER/Container.h CONTAINER/Iterator.h TextFormatter.h
  534. EditDialog.o: Mark.h VObjectTView.h TextView.h StaticTView.h
  535. EditDialog.o: CONTAINER/ObjArray.h View.h TextCmd.h MenuBar.h
  536. EditDialog.o: CommandProcessor.h Expander.h
  537. EnumItem.o: EnumItem.h Cluster.h Box.h CompVObject.h VObject.h Types.h Port.h
  538. EnumItem.o: System.h Object.h Storage.h Stream.h Point.h Metric.h Rectangle.h
  539. EnumItem.o: Font.h Ink.h Bitmap.h Token.h EvtHandler.h Command.h CmdNo.h
  540. EnumItem.o: Class.h Expander.h Buttons.h images/SliderButtonUp.image
  541. EnumItem.o: images/SliderButtonDown.image images/SliderButtonUpInv.image
  542. EnumItem.o: images/SliderButtonDownInv.image
  543. Env.o: Env.h Object.h Types.h Storage.h Stream.h Symbol.h Class.h String.h
  544. Env.o: CType.h System.h CONTAINER/OrdColl.h CONTAINER/SeqColl.h
  545. Env.o: CONTAINER/Collection.h CONTAINER/Container.h CONTAINER/Iterator.h
  546. Env.o: StreamBuf.h CLib.h
  547. Error.o: Error.h Types.h String.h Storage.h CType.h System.h Object.h
  548. Error.o: Stream.h Env.h Symbol.h
  549. EvtHandler.o: EvtHandler.h Object.h Types.h Storage.h Stream.h Token.h
  550. EvtHandler.o: Rectangle.h Metric.h Point.h Class.h Command.h
  551. EvtHandler.o: CommandProcessor.h
  552. Exception.o: Exception.h
  553. Expander.o: Expander.h Box.h CompVObject.h VObject.h Types.h Port.h System.h
  554. Expander.o: Object.h Storage.h Stream.h Point.h Metric.h Rectangle.h Font.h
  555. Expander.o: Ink.h Bitmap.h Token.h EvtHandler.h Command.h CmdNo.h Class.h
  556. Fields.o: Fields.h VObject.h Types.h Port.h System.h Object.h Storage.h
  557. Fields.o: Stream.h Point.h Metric.h Rectangle.h Font.h Ink.h Bitmap.h Token.h
  558. Fields.o: EvtHandler.h Command.h CmdNo.h Class.h Look.h Layout.h GapText.h
  559. Fields.o: Text.h String.h CType.h TextStyles.h CONTAINER/OrdColl.h
  560. Fields.o: CONTAINER/SeqColl.h CONTAINER/Collection.h CONTAINER/Container.h
  561. Fields.o: CONTAINER/Iterator.h TextFormatter.h Mark.h Manager.h
  562. Fields.o: WindowSystem.h Symbol.h Window.h Clipper.h RegularExp.h TextView.h
  563. Fields.o: StaticTView.h CONTAINER/ObjArray.h View.h Alert_e.h Math.h
  564. FileBuf.o: FileBuf.h StreamBuf.h Types.h CLib.h System.h Object.h Storage.h
  565. FileBuf.o: Stream.h Env.h Symbol.h
  566. FileDialog.o: FileDialog.h Dialog.h Manager.h EvtHandler.h Object.h Types.h
  567. FileDialog.o: Storage.h Stream.h Token.h Rectangle.h Metric.h Point.h
  568. FileDialog.o: WindowSystem.h Port.h System.h Font.h Ink.h Bitmap.h Symbol.h
  569. FileDialog.o: Window.h Clipper.h VObject.h Command.h CmdNo.h Class.h
  570. FileDialog.o: PopupItem.h Buttons.h CompVObject.h ImageItem.h BorderItems.h
  571. FileDialog.o: TextItem.h ScrollBar.h Expander.h Box.h CollView.h View.h
  572. FileDialog.o: CONTAINER/OrdColl.h CONTAINER/SeqColl.h CONTAINER/Collection.h
  573. FileDialog.o: CONTAINER/Container.h CONTAINER/Iterator.h Data.h TypeMatcher.h
  574. FileDialog.o: Fields.h Form.h Menu.h Separator.h Alert_e.h Scroller.h
  575. FileDialog.o: Cluster.h Document.h Application.h Error.h String.h CType.h
  576. Filler.o: Filler.h VObject.h Types.h Port.h System.h Object.h Storage.h
  577. Filler.o: Stream.h Point.h Metric.h Rectangle.h Font.h Ink.h Bitmap.h Token.h
  578. Filler.o: EvtHandler.h Command.h CmdNo.h Class.h
  579. FindChange.o: FindChange_e.h Types.h Class.h Object.h Storage.h Stream.h
  580. FindChange.o: Application.h Manager.h EvtHandler.h Token.h Rectangle.h
  581. FindChange.o: Metric.h Point.h WindowSystem.h Port.h System.h Font.h Ink.h
  582. FindChange.o: Bitmap.h Symbol.h Window.h Clipper.h VObject.h Command.h
  583. FindChange.o: CmdNo.h Data.h TypeMatcher.h FindDialog.h Dialog.h
  584. FindChange.o: ChangeDialog.h TextView.h StaticTView.h Text.h String.h CType.h
  585. FindChange.o: TextStyles.h CONTAINER/OrdColl.h CONTAINER/SeqColl.h
  586. FindChange.o: CONTAINER/Collection.h CONTAINER/Container.h
  587. FindChange.o: CONTAINER/Iterator.h TextFormatter.h Mark.h
  588. FindChange.o: CONTAINER/ObjArray.h View.h MenuBar.h Box.h CompVObject.h
  589. FindChange.o: Menu.h PopupItem.h Buttons.h Separator.h
  590. FindDialog.o: FindDialog.h Dialog.h Manager.h EvtHandler.h Object.h Types.h
  591. FindDialog.o: Storage.h Stream.h Token.h Rectangle.h Metric.h Point.h
  592. FindDialog.o: WindowSystem.h Port.h System.h Font.h Ink.h Bitmap.h Symbol.h
  593. FindDialog.o: Window.h Clipper.h VObject.h Command.h CmdNo.h Class.h
  594. FindDialog.o: RegularExp.h BorderItems.h TextItem.h CompVObject.h
  595. FindDialog.o: OneOfCluster.h Cluster.h Box.h ManyOfCluster.h Fields.h
  596. FindDialog.o: Buttons.h TextView.h StaticTView.h Text.h String.h CType.h
  597. FindDialog.o: TextStyles.h CONTAINER/OrdColl.h CONTAINER/SeqColl.h
  598. FindDialog.o: CONTAINER/Collection.h CONTAINER/Container.h
  599. FindDialog.o: CONTAINER/Iterator.h TextFormatter.h Mark.h
  600. FindDialog.o: CONTAINER/ObjArray.h View.h Form.h Expander.h Alert_e.h
  601. FindDialog.o: FindChange_e.h
  602. Font.o: Font.h Rectangle.h Metric.h Point.h Types.h Stream.h Object.h
  603. Font.o: Storage.h Class.h Error.h String.h CType.h WindowSystem.h Port.h
  604. Font.o: System.h Ink.h Bitmap.h Token.h Symbol.h CONTAINER/ObjArray.h
  605. Font.o: CONTAINER/SeqColl.h CONTAINER/Collection.h CONTAINER/Container.h
  606. Font.o: CONTAINER/Iterator.h CONTAINER/OrdColl.h Env.h Math.h
  607. Form.o: Form.h Box.h CompVObject.h VObject.h Types.h Port.h System.h Object.h
  608. Form.o: Storage.h Stream.h Point.h Metric.h Rectangle.h Font.h Ink.h Bitmap.h
  609. Form.o: Token.h EvtHandler.h Command.h CmdNo.h Class.h Math.h
  610. Form.o: CONTAINER/OrdColl.h CONTAINER/SeqColl.h CONTAINER/Collection.h
  611. Form.o: CONTAINER/Container.h CONTAINER/Iterator.h TextItem.h
  612. GapText.o: GapText.h Text.h Object.h Types.h Storage.h Stream.h String.h
  613. GapText.o: CType.h Font.h Rectangle.h Metric.h Point.h Port.h System.h Ink.h
  614. GapText.o: Bitmap.h Token.h TextStyles.h CONTAINER/OrdColl.h
  615. GapText.o: CONTAINER/SeqColl.h CONTAINER/Collection.h CONTAINER/Container.h
  616. GapText.o: CONTAINER/Iterator.h TextFormatter.h Mark.h Class.h RegularExp.h
  617. GapText.o: Error.h Math.h
  618. GotoDialog.o: GotoDialog.h GotoDialog_e.h Dialog.h Manager.h EvtHandler.h
  619. GotoDialog.o: Object.h Types.h Storage.h Stream.h Token.h Rectangle.h
  620. GotoDialog.o: Metric.h Point.h WindowSystem.h Port.h System.h Font.h Ink.h
  621. GotoDialog.o: Bitmap.h Symbol.h Window.h Clipper.h VObject.h Command.h
  622. GotoDialog.o: CmdNo.h Class.h Fields.h TextView.h StaticTView.h Text.h
  623. GotoDialog.o: String.h CType.h TextStyles.h CONTAINER/OrdColl.h
  624. GotoDialog.o: CONTAINER/SeqColl.h CONTAINER/Collection.h
  625. GotoDialog.o: CONTAINER/Container.h CONTAINER/Iterator.h TextFormatter.h
  626. GotoDialog.o: Mark.h CONTAINER/ObjArray.h View.h BorderItems.h TextItem.h
  627. GotoDialog.o: CompVObject.h Buttons.h Document.h Data.h TypeMatcher.h
  628. GotoDialog.o: ObjectTable.h Expander.h Box.h Math.h
  629. GraphView.o: GraphView.h TreeView.h CompVObject.h VObject.h Types.h Port.h
  630. GraphView.o: System.h Object.h Storage.h Stream.h Point.h Metric.h
  631. GraphView.o: Rectangle.h Font.h Ink.h Bitmap.h Token.h EvtHandler.h Command.h
  632. GraphView.o: CmdNo.h DialogView.h View.h Symbol.h CONTAINER/Collection.h
  633. GraphView.o: CONTAINER/Container.h CONTAINER/Iterator.h Class.h
  634. GraphView.o: CONTAINER/ObjList.h CONTAINER/SeqColl.h CONTAINER/IdDictionary.h
  635. GraphView.o: CONTAINER/Dictionary.h CONTAINER/Set.h CONTAINER/OrdColl.h
  636. GraphView.o: Dialog.h Manager.h WindowSystem.h Window.h Clipper.h TextItem.h
  637. GraphView.o: Math.h
  638. ImageItem.o: ImageItem.h VObject.h Types.h Port.h System.h Object.h Storage.h
  639. ImageItem.o: Stream.h Point.h Metric.h Rectangle.h Font.h Ink.h Bitmap.h
  640. ImageItem.o: Token.h EvtHandler.h Command.h CmdNo.h Class.h
  641. Ink.o: Ink.h Types.h Object.h Storage.h Stream.h Class.h String.h CType.h
  642. Ink.o: Port.h System.h Point.h Metric.h Rectangle.h Font.h Bitmap.h Token.h
  643. Ink.o: WindowSystem.h Symbol.h Math.h CONTAINER/OrdColl.h CONTAINER/SeqColl.h
  644. Ink.o: CONTAINER/Collection.h CONTAINER/Container.h CONTAINER/Iterator.h
  645. Ink.o: WindowPort.h WindowColorMap.h
  646. Layout.o: Layout.h Rectangle.h Metric.h Point.h Types.h Stream.h Token.h
  647. Layout.o: VObject.h Port.h System.h Object.h Storage.h Font.h Ink.h Bitmap.h
  648. Layout.o: EvtHandler.h Command.h CmdNo.h
  649. LineItem.o: LineItem.h VObject.h Types.h Port.h System.h Object.h Storage.h
  650. LineItem.o: Stream.h Point.h Metric.h Rectangle.h Font.h Ink.h Bitmap.h
  651. LineItem.o: Token.h EvtHandler.h Command.h CmdNo.h Class.h
  652. Look.o: Look.h Rectangle.h Metric.h Point.h Types.h Stream.h Layout.h Token.h
  653. Look.o: Port.h System.h Object.h Storage.h Font.h Ink.h Bitmap.h
  654. Manager.o: Manager.h EvtHandler.h Object.h Types.h Storage.h Stream.h Token.h
  655. Manager.o: Rectangle.h Metric.h Point.h WindowSystem.h Port.h System.h Font.h
  656. Manager.o: Ink.h Bitmap.h Symbol.h Window.h Clipper.h VObject.h Command.h
  657. Manager.o: CmdNo.h Class.h Application.h Data.h TypeMatcher.h String.h
  658. Manager.o: CType.h TextItem.h CommandProcessor.h Env.h CONTAINER/OrdColl.h
  659. Manager.o: CONTAINER/SeqColl.h CONTAINER/Collection.h CONTAINER/Container.h
  660. Manager.o: CONTAINER/Iterator.h Expander.h Box.h CompVObject.h MenuBar.h
  661. Manager.o: Fields.h Menu.h PopupItem.h Buttons.h Separator.h View.h
  662. Manager.o: StreamConnection.h
  663. ManyOfCluster.o: ManyOfCluster.h Cluster.h Box.h CompVObject.h VObject.h
  664. ManyOfCluster.o: Types.h Port.h System.h Object.h Storage.h Stream.h Point.h
  665. ManyOfCluster.o: Metric.h Rectangle.h Font.h Ink.h Bitmap.h Token.h
  666. ManyOfCluster.o: EvtHandler.h Command.h CmdNo.h Class.h Buttons.h
  667. ManyOfCluster.o: CONTAINER/OrdColl.h CONTAINER/SeqColl.h
  668. ManyOfCluster.o: CONTAINER/Collection.h CONTAINER/Container.h
  669. ManyOfCluster.o: CONTAINER/Iterator.h
  670. Mark.o: Mark.h Object.h Types.h Storage.h Stream.h Class.h
  671. Mark.o: CONTAINER/OrdColl.h CONTAINER/SeqColl.h CONTAINER/Collection.h
  672. Mark.o: CONTAINER/Container.h CONTAINER/Iterator.h Math.h
  673. Math.o: Math.h Types.h
  674. MemBuf.o: MemBuf.h StreamBuf.h Types.h Storage.h
  675. Menu.o: Menu.h Manager.h EvtHandler.h Object.h Types.h Storage.h Stream.h
  676. Menu.o: Token.h Rectangle.h Metric.h Point.h WindowSystem.h Port.h System.h
  677. Menu.o: Font.h Ink.h Bitmap.h Symbol.h Window.h Clipper.h VObject.h Command.h
  678. Menu.o: CmdNo.h CompVObject.h PopupItem.h Buttons.h Separator.h Class.h
  679. Menu.o: CONTAINER/OrdColl.h CONTAINER/SeqColl.h CONTAINER/Collection.h
  680. Menu.o: CONTAINER/Container.h CONTAINER/Iterator.h String.h CType.h
  681. Menu.o: CollView.h View.h TextItem.h Look.h Layout.h Box.h
  682. MenuBar.o: MenuBar.h Box.h CompVObject.h VObject.h Types.h Port.h System.h
  683. MenuBar.o: Object.h Storage.h Stream.h Point.h Metric.h Rectangle.h Font.h
  684. MenuBar.o: Ink.h Bitmap.h Token.h EvtHandler.h Command.h CmdNo.h Class.h
  685. MenuBar.o: CONTAINER/OrdColl.h CONTAINER/SeqColl.h CONTAINER/Collection.h
  686. MenuBar.o: CONTAINER/Container.h CONTAINER/Iterator.h Clipper.h Look.h
  687. MenuBar.o: Layout.h Filler.h Window.h WindowSystem.h Symbol.h Buttons.h
  688. MenuBar.o: PopupItem.h Menu.h Manager.h Separator.h
  689. Metric.o: Metric.h Point.h Types.h Stream.h Class.h Object.h Storage.h
  690. Metric.o: String.h CType.h Math.h
  691. ObjFloat.o: ObjFloat.h Object.h Types.h Storage.h Stream.h Class.h String.h
  692. ObjFloat.o: CType.h
  693. ObjInt.o: ObjInt.h Object.h Types.h Storage.h Stream.h Class.h String.h
  694. ObjInt.o: CType.h
  695. Object.o: Object.h Types.h Storage.h Stream.h Class.h CONTAINER/OrdColl.h
  696. Object.o: CONTAINER/SeqColl.h CONTAINER/Collection.h CONTAINER/Container.h
  697. Object.o: CONTAINER/Iterator.h CONTAINER/IdDictionary.h
  698. Object.o: CONTAINER/Dictionary.h CONTAINER/Set.h ObjInt.h Error.h String.h
  699. Object.o: CType.h ProgEnv.h System.h ObjectTable.h AccessMem.h MemBuf.h
  700. Object.o: StreamBuf.h CmdNo.h
  701. ObjectTable.o: ObjectTable.h Object.h Types.h Storage.h Stream.h
  702. ObjectTable.o: CONTAINER/Iterator.h Class.h CONTAINER/OrdColl.h
  703. ObjectTable.o: CONTAINER/SeqColl.h CONTAINER/Collection.h
  704. ObjectTable.o: CONTAINER/Container.h CONTAINER/Set.h System.h Error.h
  705. ObjectTable.o: ClassManager.h String.h CType.h CmdNo.h Math.h
  706. OneOfCluster.o: OneOfCluster.h Cluster.h Box.h CompVObject.h VObject.h
  707. OneOfCluster.o: Types.h Port.h System.h Object.h Storage.h Stream.h Point.h
  708. OneOfCluster.o: Metric.h Rectangle.h Font.h Ink.h Bitmap.h Token.h
  709. OneOfCluster.o: EvtHandler.h Command.h CmdNo.h Class.h Buttons.h
  710. OneOfCluster.o: CONTAINER/OrdColl.h CONTAINER/SeqColl.h
  711. OneOfCluster.o: CONTAINER/Collection.h CONTAINER/Container.h
  712. OneOfCluster.o: CONTAINER/Iterator.h
  713. Panner.o: Panner.h Slider.h CompVObject.h VObject.h Types.h Port.h System.h
  714. Panner.o: Object.h Storage.h Stream.h Point.h Metric.h Rectangle.h Font.h
  715. Panner.o: Ink.h Bitmap.h Token.h EvtHandler.h Command.h CmdNo.h Class.h
  716. Panner.o: Clipper.h
  717. PathLookup.o: PathLookup.h Object.h Types.h Storage.h Stream.h Class.h
  718. PathLookup.o: ByteArray.h CONTAINER/OrdColl.h CONTAINER/SeqColl.h
  719. PathLookup.o: CONTAINER/Collection.h CONTAINER/Container.h
  720. PathLookup.o: CONTAINER/Iterator.h System.h String.h CType.h
  721. PictPort.o: PictPort.h PrintPort.h Port.h Types.h System.h Object.h Storage.h
  722. PictPort.o: Stream.h Point.h Metric.h Rectangle.h Font.h Ink.h Bitmap.h
  723. PictPort.o: Token.h MemBuf.h StreamBuf.h Class.h String.h CType.h Picture.h
  724. PictPort.o: CONTAINER/ObjArray.h CONTAINER/SeqColl.h CONTAINER/Collection.h
  725. PictPort.o: CONTAINER/Container.h CONTAINER/Iterator.h
  726. Picture.o: Picture.h Port.h Types.h System.h Object.h Storage.h Stream.h
  727. Picture.o: Point.h Metric.h Rectangle.h Font.h Ink.h Bitmap.h Token.h Class.h
  728. Picture.o: String.h CType.h CONTAINER/ObjArray.h CONTAINER/SeqColl.h
  729. Picture.o: CONTAINER/Collection.h CONTAINER/Container.h CONTAINER/Iterator.h
  730. Picture.o: WindowSystem.h Symbol.h DevBitmap.h PictPort.h PrintPort.h
  731. Picture.o: MemBuf.h StreamBuf.h
  732. PictureItem.o: PictureItem.h VObject.h Types.h Port.h System.h Object.h
  733. PictureItem.o: Storage.h Stream.h Point.h Metric.h Rectangle.h Font.h Ink.h
  734. PictureItem.o: Bitmap.h Token.h EvtHandler.h Command.h CmdNo.h Class.h
  735. PictureItem.o: Picture.h
  736. Point.o: Point.h Types.h Stream.h Class.h Object.h Storage.h Math.h String.h
  737. Point.o: CType.h
  738. PopupItem.o: PopupItem.h Buttons.h CompVObject.h VObject.h Types.h Port.h
  739. PopupItem.o: System.h Object.h Storage.h Stream.h Point.h Metric.h
  740. PopupItem.o: Rectangle.h Font.h Ink.h Bitmap.h Token.h EvtHandler.h Command.h
  741. PopupItem.o: CmdNo.h Class.h Menu.h Manager.h WindowSystem.h Symbol.h
  742. PopupItem.o: Window.h Clipper.h Separator.h CONTAINER/SeqColl.h
  743. PopupItem.o: CONTAINER/Collection.h CONTAINER/Container.h
  744. PopupItem.o: CONTAINER/Iterator.h Look.h Layout.h MenuBar.h Box.h TextItem.h
  745. PopupItem.o: Filler.h
  746. Port.o: Port.h Types.h System.h Object.h Storage.h Stream.h Point.h Metric.h
  747. Port.o: Rectangle.h Font.h Ink.h Bitmap.h Token.h Class.h String.h CType.h
  748. Port.o: Error.h Picture.h WindowSystem.h Symbol.h DevBitmap.h Math.h
  749. PrintManager.o: PrintManager.h Dialog.h Manager.h EvtHandler.h Object.h
  750. PrintManager.o: Types.h Storage.h Stream.h Token.h Rectangle.h Metric.h
  751. PrintManager.o: Point.h WindowSystem.h Port.h System.h Font.h Ink.h Bitmap.h
  752. PrintManager.o: Symbol.h Window.h Clipper.h VObject.h Command.h CmdNo.h
  753. PrintManager.o: Class.h CONTAINER/OrdColl.h CONTAINER/SeqColl.h
  754. PrintManager.o: CONTAINER/Collection.h CONTAINER/Container.h
  755. PrintManager.o: CONTAINER/Iterator.h PrintPort.h FileDialog.h CollView.h
  756. PrintManager.o: View.h Fields.h BorderItems.h TextItem.h CompVObject.h
  757. PrintManager.o: Buttons.h Printer.h ClassManager.h Box.h String.h CType.h
  758. PrintManager.o: Expander.h Scroller.h Cluster.h Env.h
  759. PrintPort.o: PrintPort.h Port.h Types.h System.h Object.h Storage.h Stream.h
  760. PrintPort.o: Point.h Metric.h Rectangle.h Font.h Ink.h Bitmap.h Token.h
  761. PrintPort.o: Class.h String.h CType.h Error.h
  762. Printer.o: Printer.h Dialog.h Manager.h EvtHandler.h Object.h Types.h
  763. Printer.o: Storage.h Stream.h Token.h Rectangle.h Metric.h Point.h
  764. Printer.o: WindowSystem.h Port.h System.h Font.h Ink.h Bitmap.h Symbol.h
  765. Printer.o: Window.h Clipper.h VObject.h Command.h CmdNo.h Class.h String.h
  766. Printer.o: CType.h BorderItems.h TextItem.h CompVObject.h PrintPort.h
  767. Printer.o: Progress.h PrintManager.h Menu.h PopupItem.h Buttons.h Separator.h
  768. Printer.o: Expander.h Box.h
  769. ProgEnv.o: ProgEnv.h Types.h Object.h Storage.h Stream.h Class.h
  770. ProgEnv.o: ClassManager.h CONTAINER/OrdColl.h CONTAINER/SeqColl.h
  771. ProgEnv.o: CONTAINER/Collection.h CONTAINER/Container.h CONTAINER/Iterator.h
  772. ProgEnv.o: ObjectTable.h
  773. Progress.o: Progress.h Object.h Types.h Storage.h Stream.h Class.h
  774. ProgressDialog.o: ProgressDialog.h Progress.h Object.h Types.h Storage.h
  775. ProgressDialog.o: Stream.h Port.h System.h Point.h Metric.h Rectangle.h
  776. ProgressDialog.o: Font.h Ink.h Bitmap.h Token.h StreamBuf.h Class.h Dialog.h
  777. ProgressDialog.o: Manager.h EvtHandler.h WindowSystem.h Symbol.h Window.h
  778. ProgressDialog.o: Clipper.h VObject.h Command.h CmdNo.h Expander.h Box.h
  779. ProgressDialog.o: CompVObject.h TextItem.h WindowPort.h Buttons.h String.h
  780. ProgressDialog.o: CType.h Look.h Layout.h BorderItems.h Alert_e.h CLib.h
  781. PttyConnection.o: PttyConnection.h Types.h
  782. Rectangle.o: Rectangle.h Metric.h Point.h Types.h Stream.h Class.h Object.h
  783. Rectangle.o: Storage.h Error.h Math.h String.h CType.h
  784. Region.o: Region.h Rectangle.h Metric.h Point.h Types.h Stream.h Storage.h
  785. Region.o: Class.h Object.h String.h CType.h
  786. RegularExp.o: RegularExp.h Object.h Types.h Storage.h Stream.h Class.h
  787. RegularExp.o: String.h CType.h Math.h
  788. ScrollBar.o: ScrollBar.h Expander.h Box.h CompVObject.h VObject.h Types.h
  789. ScrollBar.o: Port.h System.h Object.h Storage.h Stream.h Point.h Metric.h
  790. ScrollBar.o: Rectangle.h Font.h Ink.h Bitmap.h Token.h EvtHandler.h Command.h
  791. ScrollBar.o: CmdNo.h Class.h Slider.h Buttons.h Look.h Layout.h
  792. Scroller.o: Scroller.h Cluster.h Box.h CompVObject.h VObject.h Types.h Port.h
  793. Scroller.o: System.h Object.h Storage.h Stream.h Point.h Metric.h Rectangle.h
  794. Scroller.o: Font.h Ink.h Bitmap.h Token.h EvtHandler.h Command.h CmdNo.h
  795. Scroller.o: Math.h Class.h ScrollBar.h Expander.h Clipper.h View.h Symbol.h
  796. Scroller.o: Look.h Layout.h CONTAINER/SeqColl.h CONTAINER/Collection.h
  797. Scroller.o: CONTAINER/Container.h CONTAINER/Iterator.h
  798. Separator.o: Separator.h VObject.h Types.h Port.h System.h Object.h Storage.h
  799. Separator.o: Stream.h Point.h Metric.h Rectangle.h Font.h Ink.h Bitmap.h
  800. Separator.o: Token.h EvtHandler.h Command.h CmdNo.h Class.h Look.h Layout.h
  801. ShellTView.o: ShellTView.h TextView.h StaticTView.h Text.h Object.h Types.h
  802. ShellTView.o: Storage.h Stream.h String.h CType.h Font.h Rectangle.h Metric.h
  803. ShellTView.o: Point.h Port.h System.h Ink.h Bitmap.h Token.h TextStyles.h
  804. ShellTView.o: CONTAINER/OrdColl.h CONTAINER/SeqColl.h CONTAINER/Collection.h
  805. ShellTView.o: CONTAINER/Container.h CONTAINER/Iterator.h TextFormatter.h
  806. ShellTView.o: Mark.h CONTAINER/ObjArray.h View.h VObject.h EvtHandler.h
  807. ShellTView.o: Command.h CmdNo.h Symbol.h PttyConnection.h Class.h ByteArray.h
  808. ShellTView.o: StyledText.h GapText.h Alert_e.h Menu.h Manager.h
  809. ShellTView.o: WindowSystem.h Window.h Clipper.h CompVObject.h PopupItem.h
  810. ShellTView.o: Buttons.h Separator.h MenuBar.h Box.h Math.h
  811. ShellTView.o: images/revCaret.image
  812. ShellTool.o: ShellTool.h Manager.h EvtHandler.h Object.h Types.h Storage.h
  813. ShellTool.o: Stream.h Token.h Rectangle.h Metric.h Point.h WindowSystem.h
  814. ShellTool.o: Port.h System.h Font.h Ink.h Bitmap.h Symbol.h Window.h
  815. ShellTool.o: Clipper.h VObject.h Command.h CmdNo.h Class.h Scroller.h
  816. ShellTool.o: Cluster.h Box.h CompVObject.h ShellTView.h TextView.h
  817. ShellTool.o: StaticTView.h Text.h String.h CType.h TextStyles.h
  818. ShellTool.o: CONTAINER/OrdColl.h CONTAINER/SeqColl.h CONTAINER/Collection.h
  819. ShellTool.o: CONTAINER/Container.h CONTAINER/Iterator.h TextFormatter.h
  820. ShellTool.o: Mark.h CONTAINER/ObjArray.h View.h PttyConnection.h
  821. ShellTool.o: CommandProcessor.h StyledText.h GapText.h MenuBar.h Menu.h
  822. ShellTool.o: PopupItem.h Buttons.h Separator.h Env.h
  823. SizeableExp.o: SizeableExp.h Expander.h Box.h CompVObject.h VObject.h Types.h
  824. SizeableExp.o: Port.h System.h Object.h Storage.h Stream.h Point.h Metric.h
  825. SizeableExp.o: Rectangle.h Font.h Ink.h Bitmap.h Token.h EvtHandler.h
  826. SizeableExp.o: Command.h CmdNo.h Class.h CONTAINER/Collection.h
  827. SizeableExp.o: CONTAINER/Container.h CONTAINER/Iterator.h Look.h Layout.h
  828. SizeableExp.o: Math.h
  829. Slider.o: Slider.h CompVObject.h VObject.h Types.h Port.h System.h Object.h
  830. Slider.o: Storage.h Stream.h Point.h Metric.h Rectangle.h Font.h Ink.h
  831. Slider.o: Bitmap.h Token.h EvtHandler.h Command.h CmdNo.h Class.h Look.h
  832. Slider.o: Layout.h
  833. Splitter.o: Splitter.h CompVObject.h VObject.h Types.h Port.h System.h
  834. Splitter.o: Object.h Storage.h Stream.h Point.h Metric.h Rectangle.h Font.h
  835. Splitter.o: Ink.h Bitmap.h Token.h EvtHandler.h Command.h CmdNo.h Class.h
  836. Splitter.o: Scroller.h Cluster.h Box.h
  837. StaticTView.o: StaticTView.h Text.h Object.h Types.h Storage.h Stream.h
  838. StaticTView.o: String.h CType.h Font.h Rectangle.h Metric.h Point.h Port.h
  839. StaticTView.o: System.h Ink.h Bitmap.h Token.h TextStyles.h
  840. StaticTView.o: CONTAINER/OrdColl.h CONTAINER/SeqColl.h CONTAINER/Collection.h
  841. StaticTView.o: CONTAINER/Container.h CONTAINER/Iterator.h TextFormatter.h
  842. StaticTView.o: Mark.h CONTAINER/ObjArray.h View.h VObject.h EvtHandler.h
  843. StaticTView.o: Command.h CmdNo.h Symbol.h Class.h Window.h Clipper.h
  844. StaticTView.o: WindowSystem.h PrintManager.h Dialog.h Manager.h TextPainter.h
  845. StaticTView.o: CheapText.h Invariant.h Error.h Document.h Data.h
  846. StaticTView.o: TypeMatcher.h Math.h
  847. Storage.o: Storage.h Types.h CLib.h String.h CType.h Error.h Object.h
  848. Storage.o: Stream.h ObjectTable.h CONTAINER/Iterator.h Math.h
  849. Stream.o: Stream.h Types.h StreamBuf.h FileBuf.h Class.h Object.h Storage.h
  850. Stream.o: String.h CType.h CONTAINER/ObjArray.h CONTAINER/SeqColl.h
  851. Stream.o: CONTAINER/Collection.h CONTAINER/Container.h CONTAINER/Iterator.h
  852. Stream.o: CONTAINER/OrdColl.h Error.h STREAMFILTERS/HexFilter.h
  853. Stream.o: STREAMFILTERS/StringFilter.h
  854. StreamBuf.o: StreamBuf.h Types.h String.h Storage.h CType.h Math.h
  855. StreamConnection.o: StreamConnection.h System.h Object.h Types.h Storage.h
  856. StreamConnection.o: Stream.h Data.h Symbol.h TypeMatcher.h Class.h Error.h
  857. StreamConnection.o: String.h CType.h MemBuf.h StreamBuf.h CONTAINER/OrdColl.h
  858. StreamConnection.o: CONTAINER/SeqColl.h CONTAINER/Collection.h
  859. StreamConnection.o: CONTAINER/Container.h CONTAINER/Iterator.h CLib.h Math.h
  860. StreamConnection.o: Env.h
  861. String.o: String.h Types.h Storage.h CType.h Error.h
  862. StyledText.o: StyledText.h GapText.h Text.h Object.h Types.h Storage.h
  863. StyledText.o: Stream.h String.h CType.h Font.h Rectangle.h Metric.h Point.h
  864. StyledText.o: Port.h System.h Ink.h Bitmap.h Token.h TextStyles.h
  865. StyledText.o: CONTAINER/OrdColl.h CONTAINER/SeqColl.h CONTAINER/Collection.h
  866. StyledText.o: CONTAINER/Container.h CONTAINER/Iterator.h TextFormatter.h
  867. StyledText.o: Mark.h Class.h WindowSystem.h Symbol.h CONTAINER/RunArray.h
  868. StyledText.o: Error.h Invariant.h TextReader.h Math.h
  869. Symbol.o: Symbol.h Object.h Types.h Storage.h Stream.h Class.h String.h
  870. Symbol.o: CType.h
  871. System.o: System.h Object.h Types.h Storage.h Stream.h Class.h CLib.h
  872. System.o: String.h CType.h Error.h Directory.h CONTAINER/OrdColl.h
  873. System.o: CONTAINER/SeqColl.h CONTAINER/Collection.h CONTAINER/Container.h
  874. System.o: CONTAINER/Iterator.h Env.h Symbol.h Point.h
  875. Text.o: Text.h Object.h Types.h Storage.h Stream.h String.h CType.h Font.h
  876. Text.o: Rectangle.h Metric.h Point.h Port.h System.h Ink.h Bitmap.h Token.h
  877. Text.o: TextStyles.h CONTAINER/OrdColl.h CONTAINER/SeqColl.h
  878. Text.o: CONTAINER/Collection.h CONTAINER/Container.h CONTAINER/Iterator.h
  879. Text.o: TextFormatter.h Mark.h Class.h Error.h RegularExp.h Math.h
  880. TextCmd.o: TextCmd.h TextStyles.h Object.h Types.h Storage.h Stream.h
  881. TextCmd.o: CONTAINER/OrdColl.h CONTAINER/SeqColl.h CONTAINER/Collection.h
  882. TextCmd.o: CONTAINER/Container.h CONTAINER/Iterator.h Font.h Rectangle.h
  883. TextCmd.o: Metric.h Point.h Ink.h TextView.h StaticTView.h Text.h String.h
  884. TextCmd.o: CType.h Port.h System.h Bitmap.h Token.h TextFormatter.h Mark.h
  885. TextCmd.o: CONTAINER/ObjArray.h View.h VObject.h EvtHandler.h Command.h
  886. TextCmd.o: CmdNo.h Symbol.h Class.h StyledText.h GapText.h
  887. TextCmd.o: CONTAINER/RunArray.h Math.h
  888. TextFormatter.o: TextFormatter.h Object.h Types.h Storage.h Stream.h Font.h
  889. TextFormatter.o: Rectangle.h Metric.h Point.h Mark.h Class.h Text.h String.h
  890. TextFormatter.o: CType.h Port.h System.h Ink.h Bitmap.h Token.h TextStyles.h
  891. TextFormatter.o: CONTAINER/OrdColl.h CONTAINER/SeqColl.h
  892. TextFormatter.o: CONTAINER/Collection.h CONTAINER/Container.h
  893. TextFormatter.o: CONTAINER/Iterator.h TextPainter.h CONTAINER/ObjArray.h
  894. TextFormatter.o: Math.h StaticTView.h View.h VObject.h EvtHandler.h Command.h
  895. TextFormatter.o: CmdNo.h Symbol.h
  896. TextItem.o: TextItem.h VObject.h Types.h Port.h System.h Object.h Storage.h
  897. TextItem.o: Stream.h Point.h Metric.h Rectangle.h Font.h Ink.h Bitmap.h
  898. TextItem.o: Token.h EvtHandler.h Command.h CmdNo.h Class.h String.h CType.h
  899. TextItem.o: Look.h Layout.h
  900. TextPainter.o: TextPainter.h Object.h Types.h Storage.h Stream.h TextStyles.h
  901. TextPainter.o: CONTAINER/OrdColl.h CONTAINER/SeqColl.h CONTAINER/Collection.h
  902. TextPainter.o: CONTAINER/Container.h CONTAINER/Iterator.h Font.h Rectangle.h
  903. TextPainter.o: Metric.h Point.h Ink.h Text.h String.h CType.h Port.h System.h
  904. TextPainter.o: Bitmap.h Token.h TextFormatter.h Mark.h Class.h WindowSystem.h
  905. TextPainter.o: Symbol.h Math.h
  906. TextReader.o: TextReader.h Object.h Types.h Storage.h Stream.h TextStyles.h
  907. TextReader.o: CONTAINER/OrdColl.h CONTAINER/SeqColl.h CONTAINER/Collection.h
  908. TextReader.o: CONTAINER/Container.h CONTAINER/Iterator.h Font.h Rectangle.h
  909. TextReader.o: Metric.h Point.h Ink.h Class.h VObjectText.h StyledText.h
  910. TextReader.o: GapText.h Text.h String.h CType.h Port.h System.h Bitmap.h
  911. TextReader.o: Token.h TextFormatter.h Mark.h CONTAINER/RunArray.h VObject.h
  912. TextReader.o: EvtHandler.h Command.h CmdNo.h WindowSystem.h Symbol.h
  913. TextStyles.o: TextStyles.h Object.h Types.h Storage.h Stream.h
  914. TextStyles.o: CONTAINER/OrdColl.h CONTAINER/SeqColl.h CONTAINER/Collection.h
  915. TextStyles.o: CONTAINER/Container.h CONTAINER/Iterator.h Font.h Rectangle.h
  916. TextStyles.o: Metric.h Point.h Ink.h Class.h ObjectTable.h Math.h
  917. TextView.o: TextView.h StaticTView.h Text.h Object.h Types.h Storage.h
  918. TextView.o: Stream.h String.h CType.h Font.h Rectangle.h Metric.h Point.h
  919. TextView.o: Port.h System.h Ink.h Bitmap.h Token.h TextStyles.h
  920. TextView.o: CONTAINER/OrdColl.h CONTAINER/SeqColl.h CONTAINER/Collection.h
  921. TextView.o: CONTAINER/Container.h CONTAINER/Iterator.h TextFormatter.h Mark.h
  922. TextView.o: CONTAINER/ObjArray.h View.h VObject.h EvtHandler.h Command.h
  923. TextView.o: CmdNo.h Symbol.h Class.h TextCmd.h Window.h Clipper.h
  924. TextView.o: WindowSystem.h Menu.h Manager.h CompVObject.h PopupItem.h
  925. TextView.o: Buttons.h Separator.h Error.h ChangeDialog.h FindDialog.h
  926. TextView.o: Dialog.h Document.h Data.h TypeMatcher.h RegularExp.h ClipBoard.h
  927. TextView.o: Env.h Math.h CONTAINER/SortedOList.h CONTAINER/ObjList.h
  928. TextView.o: TextItem.h MenuBar.h Box.h images/Caret.image
  929. Time.o: Time.h Types.h Stream.h Class.h Object.h Storage.h String.h CType.h
  930. Token.o: Token.h Rectangle.h Metric.h Point.h Types.h Stream.h Math.h
  931. Token.o: String.h Storage.h CType.h
  932. TreeView.o: TreeView.h CompVObject.h VObject.h Types.h Port.h System.h
  933. TreeView.o: Object.h Storage.h Stream.h Point.h Metric.h Rectangle.h Font.h
  934. TreeView.o: Ink.h Bitmap.h Token.h EvtHandler.h Command.h CmdNo.h
  935. TreeView.o: DialogView.h View.h Symbol.h Class.h Menu.h Manager.h
  936. TreeView.o: WindowSystem.h Window.h Clipper.h PopupItem.h Buttons.h
  937. TreeView.o: Separator.h String.h CType.h CONTAINER/OrdColl.h
  938. TreeView.o: CONTAINER/SeqColl.h CONTAINER/Collection.h CONTAINER/Container.h
  939. TreeView.o: CONTAINER/Iterator.h TextItem.h Math.h
  940. TypeMatcher.o: TypeMatcher.h Object.h Types.h Storage.h Stream.h Symbol.h
  941. TypeMatcher.o: Class.h String.h CType.h Data.h CLib.h CONTAINER/OrdColl.h
  942. TypeMatcher.o: CONTAINER/SeqColl.h CONTAINER/Collection.h
  943. TypeMatcher.o: CONTAINER/Container.h CONTAINER/Iterator.h
  944. Types.o: Types.h String.h Storage.h CType.h Class.h Object.h Stream.h Math.h
  945. VObject.o: VObject.h Types.h Port.h System.h Object.h Storage.h Stream.h
  946. VObject.o: Point.h Metric.h Rectangle.h Font.h Ink.h Bitmap.h Token.h
  947. VObject.o: EvtHandler.h Command.h CmdNo.h Class.h Menu.h Manager.h
  948. VObject.o: WindowSystem.h Symbol.h Window.h Clipper.h CompVObject.h
  949. VObject.o: PopupItem.h Buttons.h Separator.h String.h CType.h PrintManager.h
  950. VObject.o: Dialog.h ProgEnv.h CONTAINER/OrdColl.h CONTAINER/SeqColl.h
  951. VObject.o: CONTAINER/Collection.h CONTAINER/Container.h CONTAINER/Iterator.h
  952. VObject.o: View.h Look.h Layout.h Math.h
  953. VObjectPair.o: VObjectPair.h Box.h CompVObject.h VObject.h Types.h Port.h
  954. VObjectPair.o: System.h Object.h Storage.h Stream.h Point.h Metric.h
  955. VObjectPair.o: Rectangle.h Font.h Ink.h Bitmap.h Token.h EvtHandler.h
  956. VObjectPair.o: Command.h CmdNo.h Class.h
  957. VObjectTView.o: VObjectTView.h TextView.h StaticTView.h Text.h Object.h
  958. VObjectTView.o: Types.h Storage.h Stream.h String.h CType.h Font.h
  959. VObjectTView.o: Rectangle.h Metric.h Point.h Port.h System.h Ink.h Bitmap.h
  960. VObjectTView.o: Token.h TextStyles.h CONTAINER/OrdColl.h CONTAINER/SeqColl.h
  961. VObjectTView.o: CONTAINER/Collection.h CONTAINER/Container.h
  962. VObjectTView.o: CONTAINER/Iterator.h TextFormatter.h Mark.h
  963. VObjectTView.o: CONTAINER/ObjArray.h View.h VObject.h EvtHandler.h Command.h
  964. VObjectTView.o: CmdNo.h Symbol.h TextCmd.h CompVObject.h Class.h
  965. VObjectTView.o: VObjectText.h StyledText.h GapText.h Clipper.h Picture.h
  966. VObjectTView.o: PictureItem.h ImageItem.h Data.h TypeMatcher.h
  967. VObjectText.o: VObjectText.h StyledText.h GapText.h Text.h Object.h Types.h
  968. VObjectText.o: Storage.h Stream.h String.h CType.h Font.h Rectangle.h
  969. VObjectText.o: Metric.h Point.h Port.h System.h Ink.h Bitmap.h Token.h
  970. VObjectText.o: TextStyles.h CONTAINER/OrdColl.h CONTAINER/SeqColl.h
  971. VObjectText.o: CONTAINER/Collection.h CONTAINER/Container.h
  972. VObjectText.o: CONTAINER/Iterator.h TextFormatter.h Mark.h Class.h TextView.h
  973. VObjectText.o: StaticTView.h CONTAINER/ObjArray.h View.h VObject.h
  974. VObjectText.o: EvtHandler.h Command.h CmdNo.h Symbol.h
  975. VObjectText.o: CONTAINER/SortedOList.h CONTAINER/ObjList.h Invariant.h
  976. VObjectText.o: Error.h
  977. View.o: View.h VObject.h Types.h Port.h System.h Object.h Storage.h Stream.h
  978. View.o: Point.h Metric.h Rectangle.h Font.h Ink.h Bitmap.h Token.h
  979. View.o: EvtHandler.h Command.h CmdNo.h Symbol.h Class.h Error.h Document.h
  980. View.o: Manager.h WindowSystem.h Window.h Clipper.h Data.h TypeMatcher.h
  981. View.o: Menu.h CompVObject.h PopupItem.h Buttons.h Separator.h ClipBoard.h
  982. View.o: PrintManager.h Dialog.h Alert_e.h CONTAINER/OrdColl.h
  983. View.o: CONTAINER/SeqColl.h CONTAINER/Collection.h CONTAINER/Container.h
  984. View.o: CONTAINER/Iterator.h String.h CType.h FileDialog.h Progress.h
  985. Window.o: Window.h Clipper.h VObject.h Types.h Port.h System.h Object.h
  986. Window.o: Storage.h Stream.h Point.h Metric.h Rectangle.h Font.h Ink.h
  987. Window.o: Bitmap.h Token.h EvtHandler.h Command.h CmdNo.h WindowSystem.h
  988. Window.o: Symbol.h Class.h Error.h WindowPort.h ObjectTable.h
  989. Window.o: CONTAINER/Iterator.h ClassManager.h CONTAINER/OrdColl.h
  990. Window.o: CONTAINER/SeqColl.h CONTAINER/Collection.h CONTAINER/Container.h
  991. Window.o: View.h Document.h Manager.h Data.h TypeMatcher.h Env.h Look.h
  992. Window.o: Layout.h Buttons.h CompVObject.h String.h CType.h MenuBar.h Box.h
  993. WindowColorMap.o: WindowColorMap.h Object.h Types.h Storage.h Stream.h Ink.h
  994. WindowColorMap.o: Class.h
  995. WindowPort.o: WindowPort.h Port.h Types.h System.h Object.h Storage.h
  996. WindowPort.o: Stream.h Point.h Metric.h Rectangle.h Font.h Ink.h Bitmap.h
  997. WindowPort.o: Token.h WindowSystem.h Symbol.h Class.h Error.h Math.h String.h
  998. WindowPort.o: CType.h Window.h Clipper.h VObject.h EvtHandler.h Command.h
  999. WindowPort.o: CmdNo.h CONTAINER/OrdColl.h CONTAINER/SeqColl.h
  1000. WindowPort.o: CONTAINER/Collection.h CONTAINER/Container.h
  1001. WindowPort.o: CONTAINER/Iterator.h Region.h WindowColorMap.h
  1002. WindowSystem.o: WindowSystem.h Port.h Types.h System.h Object.h Storage.h
  1003. WindowSystem.o: Stream.h Point.h Metric.h Rectangle.h Font.h Ink.h Bitmap.h
  1004. WindowSystem.o: Token.h Symbol.h Class.h CLib.h String.h CType.h Error.h
  1005. WindowSystem.o: WindowPort.h ClipBoard.h DevBitmap.h StreamConnection.h
  1006. WindowSystem.o: Data.h TypeMatcher.h CONTAINER/OrdColl.h CONTAINER/SeqColl.h
  1007. WindowSystem.o: CONTAINER/Collection.h CONTAINER/Container.h
  1008. WindowSystem.o: CONTAINER/Iterator.h ClassManager.h Env.h Look.h Layout.h
  1009. WindowSystem.o: TextItem.h VObject.h EvtHandler.h Command.h CmdNo.h
  1010. WindowSystem.o: CompVObject.h MemBuf.h StreamBuf.h
  1011. Zoomer.o: Zoomer.h Scroller.h Cluster.h Box.h CompVObject.h VObject.h Types.h
  1012. Zoomer.o: Port.h System.h Object.h Storage.h Stream.h Point.h Metric.h
  1013. Zoomer.o: Rectangle.h Font.h Ink.h Bitmap.h Token.h EvtHandler.h Command.h
  1014. Zoomer.o: CmdNo.h Class.h Menu.h Manager.h WindowSystem.h Symbol.h Window.h
  1015. Zoomer.o: Clipper.h PopupItem.h Buttons.h Separator.h MenuBar.h
  1016. regex.o: regex.h
  1017.